home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxfcmap.h < prev    next >
C/C++ Source or Header  |  1997-03-17  |  4KB  |  94 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxfcmap.h */
  20. /* Internal CMap data definition */
  21.  
  22. /* This file should be called gxcmap.h, except that name is already used. */
  23.  
  24. #ifndef gxfcmap_INCLUDED
  25. #  define gxfcmap_INCLUDED
  26.  
  27. #include "gsfcmap.h"
  28. #include "gsuid.h"
  29.  
  30. /*
  31.  * The main body of data in a CMap is two code maps, one for defined
  32.  * characters, one for notdefs.  Each code map is a multi-level tree,
  33.  * one level per byte decoded from the input string.  Each node of
  34.  * the tree may be:
  35.  *    a character code (1-4 bytes)
  36.  *    a character name (gs_glyph)
  37.  *    a CID (gs_glyph)
  38.  *    a subtree
  39.  */
  40. typedef enum {
  41.   cmap_char_code,
  42.   cmap_glyph,            /* character name or CID */
  43.   cmap_subtree
  44. } gx_code_map_type;
  45. typedef struct gx_code_map_s gx_code_map;
  46. struct gx_code_map_s {
  47.   byte first;            /* first char code covered by this node */
  48.   byte last;            /* last char code ditto */
  49.   uint /*gx_code_map_type*/ type : 2;
  50.   uint num_bytes1 : 2;        /* # of bytes -1 for char_code */
  51.   uint /*bool*/ add_offset : 1;  /* if set, add char - first to ccode / glyph */
  52.   /* We would like to combine the two unions into a union of structs, */
  53.   /* but no compiler seems to do the right thing about packing. */
  54.   union bd_ {
  55.     byte font_index;        /* for leaf, font index */
  56.                 /* (only non-zero if rearranged font) */
  57.     byte count1;        /* for subtree, # of entries -1 */
  58.   } byte_data;
  59.   union d_ {
  60.     gs_char ccode;        /* num_bytes bytes */
  61.     gs_glyph glyph;
  62.     gx_code_map *subtree;    /* [count] */
  63.   } data;
  64.   gs_cmap *cmap;        /* point back to CMap for GC mark proc */
  65. };
  66. /* The GC information for a gx_code_map is complex, because names must be */
  67. /* traced. */
  68. extern_st(st_code_map);
  69. extern_st(st_code_map_element);
  70. #define public_st_code_map()    /* in gsfcmap.c */\
  71.   gs_public_st_composite(st_code_map, gx_code_map, "gx_code_map",\
  72.     code_map_enum_ptrs, code_map_reloc_ptrs)
  73. #define public_st_code_map_element() /* in gsfcmap.c */\
  74.   gs_public_st_element(st_code_map_element, gx_code_map, "gx_code_map[]",\
  75.     code_map_elt_enum_ptrs, code_map_elt_reloc_ptrs, st_code_map)
  76.  
  77. /* A CMap proper is relatively simple. */
  78. struct gs_cmap_s {
  79.   gs_cid_system_info CIDSystemInfo; /* must be first */
  80.   gs_uid uid;
  81.   int WMode;
  82.   gx_code_map def;        /* defined characters (cmap_subtree) */
  83.   gx_code_map notdef;        /* notdef characters (cmap_subtree) */
  84.   gs_glyph_mark_proc_t mark_glyph;    /* glyph marking procedure for GC */
  85.   void *mark_glyph_data;        /* closure data */
  86. };
  87. /*extern_st(st_cmap);*/
  88. #define public_st_cmap()    /* in gsfcmap.c */\
  89.   gs_public_st_suffix_add4(st_cmap, gs_cmap, "gs_cmap",\
  90.     cmap_enum_ptrs, cmap_reloc_ptrs, st_cid_system_info,\
  91.     uid.xvalues, def.data.subtree, notdef.data.subtree, mark_glyph_data)
  92.  
  93. #endif                /* gxfcmap_INCLUDED */
  94.